home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Complementary Applications 2004 May / SGI IRIX 6.5 Complementary Applications 2004 May.iso / dist / OpenOffice.idb / usr / OpenOffice / help / en / sbasic.jar / text / sbasic / common / 03020205.xml < prev    next >
Encoding:
Extensible Markup Language  |  2002-01-24  |  2.6 KB  |  40 lines

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <html><head><title>Write Statement [Runtime]</title><meta name="filename" content="text/sbasic/common/03020205"/><meta name="language" content="en-US"/><help:css-file-link xmlns:help="http://openoffice.org/2000/help"/><!--The CSS style header method for setting styles--><style type="text/css">
  3.  
  4.         p.P1{
  5.                 }
  6.         p.P2{
  7.                 }
  8.         span.T1{
  9.                 font-weight:bold;}
  10.         </style></head><body>
  11.   
  12.   
  13.   <help:to-be-embedded Eid="write" xmlns:help="http://openoffice.org/2000/help">
  14.   <p class="Head1"><help:link Id="66577">Write Statement [Runtime]</help:link></p>
  15.   <p class="Paragraph">Writes data in a sequential file.</p>
  16.   </help:to-be-embedded>
  17.   <p class="Paragraph"><span class="T1">Syntax</span>:</p>
  18.   <p class="Paragraph">Write [#]FileName, [Expressionlist] <help:key-word value="Write" tag="kw66577_1" xmlns:help="http://openoffice.org/2000/help"/></p>
  19.   <p class="Paragraph"><span class="T1">Parameter</span>:</p>
  20.   <p class="Paragraph">FileName: Any numeric expression that contains the file number set by the Open statement for the respective file.</p>
  21.   <p class="Paragraph">Expressionlist: Variables or expressions to be entered in a file, separated by commas.</p>
  22.   <p class="Paragraph">If the expression list is omitted, the <span class="T1">Write#</span> statement appends an empty line to the file.</p>
  23.   <p class="Paragraph">To add an expression list to a new or existing file, the file must be opened in the <span class="T1"><text:s text:c="" xmlns:text="http://openoffice.org/2000/text"/>Output</span> or <span class="T1">Append</span> mode.</p>
  24.   <p class="Paragraph">The <span class="T1">Write#</span> statement enters data enclosed by quotation marks and separated by commas into a file. Opposed to the <span class="T1">Print#</span> statement, it is not necessary to use delimiters in the list. The end of a file created with the <span class="T1">Write#</span> statement is indicated by a line end symbol.</p>
  25.   <p class="P2">Example:</p>
  26.   <p class="PropText">Sub ExampleWrite</p>
  27.   <p class="PropText">Dim iCount As Integer</p>
  28.   <p class="PropText">Dim sValue As String</p>
  29.   <p class="PropText">iCount = Freefile</p>
  30.   <p class="PropText">open "C:\data.txt" for OutPut as iCount</p>
  31.   <p class="PropText">sValue = "Hamburg"</p>
  32.   <p class="PropText">Write #iCount,sValue,200</p>
  33.   <p class="PropText">sValue = "New York"</p>
  34.   <p class="PropText">Write #iCount,sValue,300</p>
  35.   <p class="PropText">sValue = "Miami"</p>
  36.   <p class="PropText">Write #iCount,sValue,450</p>
  37.   <p class="PropText">close #iCount</p>
  38.   <p class="PropText">end sub</p>
  39.   <p class="PropText"/>
  40.  </body></html>